home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gscdefs.h < prev    next >
C/C++ Source or Header  |  1996-05-08  |  2KB  |  51 lines

  1. /* Copyright (C) 1994, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gscdefs.h */
  20. /* Prototypes for configuration definitions in gconfig.c. */
  21.  
  22. /* Miscellaneous system constants (read-only systemparams). */
  23. /* They should all be const, but one application needs some of them */
  24. /* to be writable.... */
  25. extern long gs_buildtime;
  26. extern const char *gs_copyright;
  27. extern const char *gs_product;
  28. extern long gs_revision;
  29. extern long gs_revisiondate;
  30. extern long gs_serialnumber;
  31.  
  32. /* Installation directories and files */
  33. extern const char *gs_doc_directory;
  34. extern const char *gs_lib_default_path;
  35. extern const char *gs_init_file;
  36.  
  37. /* Resource tables.  In order to avoid importing a large number of types, */
  38. /* we only provide macros for the externs, not the externs themselves. */
  39.  
  40. #define extern_gx_init_table()\
  41.   extern void (*gx_init_table[])(P1(gs_memory_t *))
  42.  
  43. #define extern_gx_io_device_table()\
  44.   extern gx_io_device *gx_io_device_table[]
  45.  
  46. /* Return the list of device prototypes, the list of their structure */
  47. /* descriptors, and (as the value) the length of the lists. */
  48. #define extern_gs_lib_device_list()\
  49.   int gs_lib_device_list(P2(const gx_device ***plist,\
  50.                 gs_memory_struct_type_t **pst))
  51.